home *** CD-ROM | disk | FTP | other *** search
/ The Amiga Classic Collection / The Amiga Classic Collection - Disc 2.iso / Klondike / K100a-.dms / K100a-.adf / Install < prev    next >
Text File  |  1992-12-29  |  4KB  |  186 lines

  1. (complete 0)
  2. (set default_lang 4)
  3.  
  4. (set #bad-kick
  5. (cat "You must be using Kickstart 3.0 to install this game"
  6. ))
  7.  
  8. (set #which-disk
  9. (cat "In which partition should the game be installed?"
  10. ))
  11.  
  12. (set #which-disk-help
  13. (cat "\nThis section lets you choose on which hard drive partition the "
  14.      "Game files will be installed. "
  15.      @askdir-help
  16. ))
  17.  
  18. ;=============================================================================
  19. ; make sure we are running under V39
  20.  
  21. (if (< (/ (getversion) 65536) 39)
  22. (
  23.     (abort #bad-kick)
  24. ))
  25.  
  26. (user 0)
  27. (welcome)
  28. (set old_level @user-level)
  29.  
  30. ;=============================================================================
  31. ; get the version from medplayer.library currently installed
  32.  
  33.     (if (= (exists "Libs:medplayer.library") 1)
  34.         (
  35.         (protect "Libs:medplayer.library" "+rwed")
  36.         )
  37.     )
  38.     (copylib
  39.         (prompt    ("Copying %s to %s" "REKO01:libs/medplayer.library" "Libs:"))
  40.         (help    copyLibFileHelp
  41.             "\n"
  42.             "If you already have a copy of this library in the selected destination directory, the library "
  43.             "included on the distribution disk will be compared to the one you "
  44.             "already have. If your current library is an old version, the newer "
  45.             "version will be installed.\n"
  46.             "\n"
  47.             @copylib-help
  48.         )
  49.         (source "REKO01:libs/medplayer.library")
  50.         (dest "Libs:")
  51.         (confirm)
  52.     )
  53.  
  54. (complete 5)
  55.  
  56. ;=============================================================================
  57. ; get target directory where game is to be installed
  58.  
  59. (set old_wb ("SYS:"))
  60. (user 2)
  61. (set target (askdir (prompt #which-disk)
  62.                 (help #which-disk-help)
  63.                 (default "")
  64.                 (disk)
  65.         ))
  66. (user old_level)
  67.  
  68. (makedir (tackon target "REKO-Productions"))
  69. (set wtarget target)
  70.  
  71. (copyfiles (source "REKO01:REKO.infa")
  72.        (dest wtarget)
  73. )
  74. (rename (tackon wtarget "REKO.infa") (tackon wtarget "REKO-Productions.info"))
  75.  
  76. (set target (tackon target "REKO-Productions"))
  77. (set @default-dest target)
  78. (set wtarget target)
  79.  
  80. ;=============================================================================
  81. ; Put REKOCHARS in Fonts: directory
  82.  
  83. (copyfiles (source "REKO01:FONTS")
  84.        (dest "FONTS:")
  85.        (pattern "REKO#?")
  86. )
  87.  
  88. ;=============================================================================
  89. ; Put REKO command in C: directory
  90.  
  91. (copyfiles (source "REKO01:C/REKO")
  92.        (dest "C:")
  93. )
  94.  
  95. ;=============================================================================
  96. ; make some new drawers
  97.  
  98. (makedir (tackon wtarget "PICS"))
  99. (makedir (tackon wtarget "MUSIC"))
  100. (makedir (tackon wtarget "CARDS"))
  101.  
  102.  
  103. (copyfiles (source "REKO01:REKO.infa")
  104.        (dest wtarget)
  105. )
  106. (rename (tackon wtarget "REKO.infa") (tackon wtarget "MAKE-CARDS.info"))
  107.  
  108. (copyfiles (source "REKO01:Klondike-Deluxe-AGA.info")
  109.        (dest wtarget)
  110. )
  111.  
  112. (copyfiles (source "REKO01:Klondike-Deluxe-AGA.HD")
  113.        (dest wtarget)
  114. )
  115. (rename (tackon wtarget "Klondike-Deluxe-AGA.HD") (tackon wtarget "Klondike-Deluxe-AGA"))
  116.  
  117. (copyfiles (source "REKO01:REKO.Prefs.HD")
  118.        (dest wtarget)
  119. )
  120. (rename (tackon wtarget "REKO.Prefs.HD") (tackon wtarget "REKO.Prefs"))
  121.  
  122. (complete 10)
  123.  
  124. (copyfiles (source "REKO01:Intro.MUSX")
  125.        (dest (tackon wtarget "MUSIC"))
  126. )
  127.  
  128. (complete 20)
  129.  
  130. (copyfiles (source "REKO01:Intro.REKO")
  131.        (dest (tackon wtarget "PICS"))
  132. )
  133.  
  134. (complete 30)
  135.  
  136. (copyfiles (source "REKO01:")
  137.        (dest wtarget)
  138.        (pattern "REKO.Docs#?")
  139. )
  140.  
  141. (complete 31)
  142.  
  143. (copyfiles (source "REKO01:FullView")
  144.        (dest wtarget)
  145. )
  146.  
  147. (complete 32)
  148.  
  149. (copyfiles (source "REKO01:")
  150.        (dest wtarget)
  151.        (pattern "REKO.QRCard#?")
  152. )
  153.  
  154. (complete 33)
  155.  
  156. (copyfiles (source "REKO02:Default.REKO")
  157.        (dest (tackon wtarget "CARDS"))
  158. )
  159.  
  160. (complete 66)
  161.  
  162. (copyfiles (source "REKO03:")
  163.        (dest wtarget)
  164.        (pattern "MAKE#?")
  165. )
  166.  
  167. (complete 70)
  168.  
  169. (copyfiles (source "REKO03:Default.MUSX")
  170.        (dest (tackon wtarget "MUSIC"))
  171. )
  172.  
  173. (complete 80)
  174.  
  175. (copyfiles (source "REKO03:Default.WINM")
  176.        (dest (tackon wtarget "MUSIC"))
  177. )
  178.  
  179. (complete 90)
  180.  
  181. (copyfiles (source "REKO03:Default.WINP")
  182.        (dest (tackon wtarget "PICS"))
  183. )
  184.  
  185. (complete 100)
  186.